home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Audio / Patchmix / XWindowsSource / graph.c next >
C/C++ Source or Header  |  1992-03-28  |  707b  |  45 lines

  1. static char rcsid[] = "$Header: graph.c,v 1.2 90/09/08 12:49:15 mara Exp $";
  2.  
  3. // graph.c
  4. // 
  5. // Written by Mara Helmuth
  6. //
  7. /* $Log:    graph.c,v $
  8.  * Revision 1.2  90/09/08  12:49:15  mara
  9.  * side panel
  10.  * 
  11.  * Revision 1.1  90/08/27  17:08:23  mara
  12.  * Initial revision
  13.  * 
  14. */
  15.  
  16. #include "plus.h"
  17.  
  18. void graphics::init(int argc, char* argv[])
  19. {
  20.     setup_windows(argc, argv);
  21.     setup_images();
  22.     setup_canvas();
  23.     setup_panel();
  24.     setup_mbar();
  25.     setup_qpanel();
  26.     setup_oscpanel();
  27.     setup_evppanel();
  28.     setup_buzzpanel();
  29.     setup_sidepanel();
  30.  
  31.     map_windows();
  32. }
  33.  
  34. void graphics::event_processor()
  35. {
  36.     event_loop();
  37. }
  38.  
  39. void graphics::data_window()
  40. {
  41.     printf("graphics::data_window()\n");    
  42.     setup_datpanel();
  43.     select_data();
  44. }
  45.